home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / communic / pcmail / main / status.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  1.8 KB  |  115 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    status 5
  6.  
  7. /* SUMMARY
  8.  
  9. /*    process termination status
  10.  
  11. /* PROJECT
  12.  
  13. /*    pc-mail
  14.  
  15. /* PACKAGE
  16.  
  17. /*    library
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    #include "status.h"
  22.  
  23. /* DESCRIPTION
  24.  
  25. /* .nf
  26.  
  27.  
  28.  
  29.  /* process termination status codes */
  30.  
  31.  
  32.  
  33. #define    E_SUCCESS    0        /* successfull completion */
  34.  
  35.  
  36.  
  37. #define    E_SYSFAIL    41        /* operating system failure */
  38.  
  39. #define    E_NOPROG    42        /* program not found */
  40.  
  41. #define    E_NOSPOOL    43        /* no spool directory */
  42.  
  43. #define    E_READERR    44        /* data file read error */
  44.  
  45. #define    E_WRITERR    45        /* data file write error */
  46.  
  47. #define    E_CONFUSED    46        /* internal error */
  48.  
  49. #define    E_UNKNOWN    47        /* unknown error */
  50.  
  51. #define    E_FILENO    48        /* cannot open enough files */
  52.  
  53. #define    E_BADSETUP    49        /* bad setup parameter */
  54.  
  55. #define    E_UNLINK    50        /* cannot remove file */
  56.  
  57. #define    E_PRINTERR    51        /* printer error */
  58.  
  59. #define    E_NOUSER    52        /* unknown user */
  60.  
  61. #define    E_OVALIAS    53        /* alias expansion overflow */
  62.  
  63. #define    E_TOOLONG    54        /* list of recipients too long */
  64.  
  65.  
  66.  
  67.  /* cico specific codes */
  68.  
  69.  
  70.  
  71. #define    E_NOLINE    61        /* cannot reach host */
  72.  
  73. #define    E_NORESP    62        /* no ititial response */
  74.  
  75. #define    E_REJECT    63        /* rejected by host (unknown,... ) */
  76.  
  77. #define    E_LOST        64        /* link lost (timeout,...) */
  78.  
  79. /* SEE ALSO
  80.  
  81. /*    status(3)    error message implementation
  82.  
  83. /* BUGS
  84.  
  85. /*    The usual error message problem: there is hardly any context
  86.  
  87. /*    information. A read error is a read error, no info about the
  88.  
  89. /*    state of processing when it ocurred.
  90.  
  91. /* AUTHOR(S)
  92.  
  93. /*    W.Z. Venema
  94.  
  95. /*    Eindhoven University of Technology
  96.  
  97. /*    Department of Mathematics and Computer Science
  98.  
  99. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  100.  
  101. /* CREATION DATE
  102.  
  103. /*    Sat Apr 11 15:45:37 GMT+1:00 1987
  104.  
  105. /* LAST MODIFICATION
  106.  
  107. /*    90/01/22 13:02:42
  108.  
  109. /* VERSION/RELEASE
  110.  
  111. /*    2.1
  112.  
  113. /*--*/
  114.  
  115.